Component org.nuxeo.ecm.platform.routing.contentView.contrib
In bundle org.nuxeo.ecm.platform.routing.web
Resolution Order
783
The resolution order represents the order in which this component has been resolved by the Nuxeo Runtime
framework.
You can influence this order by adding "require" tags in your component declaration, to make sure it is resolved after another component.
Contributions
XML Source
<?xml version="1.0"?>
<component name="org.nuxeo.ecm.platform.routing.contentView.contrib">
<extension target="org.nuxeo.ecm.platform.ui.web.ContentViewService"
point="contentViews">
<contentView name="route_past_steps">
<title>label.document.routing.past.steps</title>
<translateTitle>true</translateTitle>
<showTitle>true</showTitle>
<coreQueryPageProvider>
<property name="coreSession">#{documentManager}</property>
<parameter>#{currentDocument.id}</parameter>
<parameter>#{routingActions.getRelatedRoute().getDocument().getId()}</parameter>
<whereClause docType="TaskDoc">
<fixedPart>
nt:targetDocumentsIds = ? AND
nt:processId = ? AND
ecm:currentLifeCycleState = 'ended'
</fixedPart>
</whereClause>
<pageSize>10</pageSize>
</coreQueryPageProvider>
<showFilterForm>false</showFilterForm>
<showRefreshCommand>false</showRefreshCommand>
<showPageSizeSelector>false</showPageSizeSelector>
<useGlobalPageSize>false</useGlobalPageSize>
<refresh>
<event>documentCreated</event>
<event>workflowTaskCompleted</event>
<event>tasksCacheReset</event>
</refresh>
<cacheSize>10</cacheSize>
<cacheKey>#{org.jboss.seam.core.manager.currentConversationId}
</cacheKey>
<resultLayouts>
<layout name="route_content_view_layout" title=""
translateTitle="" iconPath="" showCSVExport="false"
showPDFExport="false" />
</resultLayouts>
</contentView>
</extension>
</component>